home *** CD-ROM | disk | FTP | other *** search
/ Choice 4 / Choice CD-ROM 4 - Disc 2.iso / onl / 14 / sakbac11.lzh / WINBAT.BAC < prev   
Text File  |  1994-02-15  |  764b  |  37 lines

  1. ; メモ帳(notepad.exe)、電卓(calc.exe)、ペイントブラシ(pbrush.exe)を順に
  2. ; 呼び出すバッチ処理のサンプルです。
  3.  
  4.  bac data
  5.  
  6.  set_bmpcaption "プログラム呼び出しサンプル"
  7.  set_msgcaption "案内"
  8.  dsp_bmp sakinst.bca
  9. ;        |_ ビットマップを表示するときは、お持ちの bmp bcs bca ファイル
  10. ;           を指定して下さい。
  11.  
  12. @loop
  13.  set_msg "Windows でプログラムを順に呼び出します。"
  14.  set_msg "呼び出すのは、メモ帳、電卓、ペイントブラシです。"
  15.  set_msg "よろしいですか?"
  16.  set_msg "  ○実行する"
  17.  set_msg "  ○やめる"
  18.  dsp_msg beep_off
  19.  
  20.  if_sel4 @yes
  21.  if_sel5 @end
  22.  goto    @loop
  23.  
  24. @yes
  25.  win_call notepad
  26.  win_call calc
  27.  win_call pbrush
  28.  
  29.  do
  30.    set_msg "終了しました。"
  31.    set_msg "  ○終わり"
  32.    dsp_msg beep_off
  33.  loop_until_sel2
  34.  
  35. @end
  36.  end
  37.